home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue32 / survive / demo1.dfm / demo1.txt
Encoding:
Text File  |  1998-02-23  |  3.2 KB  |  186 lines

  1. object Form1: TForm1
  2.   Left = 221
  3.   Top = 110
  4.   Width = 732
  5.   Height = 616
  6.   Caption = 'Form1'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   OnDestroy = FormDestroy
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 19
  18.     Top = 33
  19.     Width = 31
  20.     Height = 13
  21.     Caption = 'Server'
  22.   end
  23.   object Label2: TLabel
  24.     Left = 19
  25.     Top = 59
  26.     Width = 48
  27.     Height = 13
  28.     Caption = 'Username'
  29.   end
  30.   object Label3: TLabel
  31.     Left = 19
  32.     Top = 85
  33.     Width = 46
  34.     Height = 13
  35.     Caption = 'Password'
  36.   end
  37.   object Label4: TLabel
  38.     Left = 299
  39.     Top = 10
  40.     Width = 51
  41.     Height = 13
  42.     Caption = 'Databases'
  43.   end
  44.   object Label5: TLabel
  45.     Left = 440
  46.     Top = 10
  47.     Width = 32
  48.     Height = 13
  49.     Caption = 'Tables'
  50.   end
  51.   object Label6: TLabel
  52.     Left = 581
  53.     Top = 10
  54.     Width = 40
  55.     Height = 13
  56.     Caption = 'Columns'
  57.   end
  58.   object Label7: TLabel
  59.     Left = 8
  60.     Top = 313
  61.     Width = 35
  62.     Height = 13
  63.     Caption = 'Results'
  64.   end
  65.   object Label8: TLabel
  66.     Left = 8
  67.     Top = 193
  68.     Width = 28
  69.     Height = 13
  70.     Caption = 'Query'
  71.   end
  72.   object edtServerName: TEdit
  73.     Left = 80
  74.     Top = 29
  75.     Width = 121
  76.     Height = 21
  77.     TabOrder = 0
  78.   end
  79.   object edtUsername: TEdit
  80.     Left = 80
  81.     Top = 55
  82.     Width = 121
  83.     Height = 21
  84.     TabOrder = 1
  85.   end
  86.   object edtPassword: TEdit
  87.     Left = 80
  88.     Top = 81
  89.     Width = 121
  90.     Height = 21
  91.     PasswordChar = '*'
  92.     TabOrder = 2
  93.   end
  94.   object btnConnect: TButton
  95.     Left = 219
  96.     Top = 33
  97.     Width = 75
  98.     Height = 25
  99.     Caption = 'Connect'
  100.     TabOrder = 3
  101.     OnClick = btnConnectClick
  102.   end
  103.   object memResults: TMemo
  104.     Left = 8
  105.     Top = 328
  106.     Width = 705
  107.     Height = 253
  108.     Font.Charset = DEFAULT_CHARSET
  109.     Font.Color = clWindowText
  110.     Font.Height = -11
  111.     Font.Name = 'Courier New'
  112.     Font.Style = []
  113.     ParentFont = False
  114.     ScrollBars = ssBoth
  115.     TabOrder = 4
  116.     WordWrap = False
  117.   end
  118.   object lstDatabaseNames: TListBox
  119.     Left = 299
  120.     Top = 24
  121.     Width = 133
  122.     Height = 149
  123.     ItemHeight = 13
  124.     TabOrder = 5
  125.     OnClick = lstDatabaseNamesClick
  126.   end
  127.   object lstTableNames: TListBox
  128.     Left = 440
  129.     Top = 24
  130.     Width = 133
  131.     Height = 149
  132.     ItemHeight = 13
  133.     TabOrder = 6
  134.     OnClick = lstTableNamesClick
  135.   end
  136.   object lstColumnNames: TListBox
  137.     Left = 581
  138.     Top = 24
  139.     Width = 133
  140.     Height = 149
  141.     ItemHeight = 13
  142.     TabOrder = 7
  143.   end
  144.   object memQuery: TMemo
  145.     Left = 8
  146.     Top = 208
  147.     Width = 707
  148.     Height = 93
  149.     Font.Charset = DEFAULT_CHARSET
  150.     Font.Color = clWindowText
  151.     Font.Height = -11
  152.     Font.Name = 'Courier New'
  153.     Font.Style = []
  154.     ParentFont = False
  155.     ScrollBars = ssBoth
  156.     TabOrder = 8
  157.     WordWrap = False
  158.   end
  159.   object btnExecSQL: TButton
  160.     Left = 49
  161.     Top = 181
  162.     Width = 75
  163.     Height = 25
  164.     Caption = 'ExecSQL'
  165.     TabOrder = 9
  166.     OnClick = btnExecSQLClick
  167.   end
  168.   object btnOpenSQL: TButton
  169.     Left = 136
  170.     Top = 181
  171.     Width = 75
  172.     Height = 25
  173.     Caption = 'OpenSQL'
  174.     TabOrder = 10
  175.     OnClick = btnOpenSQLClick
  176.   end
  177.   object Button3: TButton
  178.     Left = 218
  179.     Top = 136
  180.     Width = 75
  181.     Height = 25
  182.     Caption = 'Button3'
  183.     TabOrder = 11
  184.   end
  185. end
  186.